home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / System / BoingBag1 / Contributions / InstallerNG / GUI-API / example / igui_Working.c < prev    next >
C/C++ Source or Header  |  1999-10-28  |  981b  |  51 lines

  1.  
  2. #include "includes.h"
  3. #include "installergui_data.h"
  4.  
  5. /********************************************************************
  6.  *
  7.  *  DESCRIPTION
  8.  *
  9.  *  just show a simple text, which informs the user, that the
  10.  *  installer is currently working (see the WORKING documentation)
  11.  *
  12.  *  IN:  application - pointer to the private application structure
  13.  *       text - the working text
  14.  *  OUT: -
  15.  *
  16.  */
  17.  
  18. /********************************************************************
  19.  *
  20.  *  STATIC
  21.  *
  22.  */
  23.  
  24. /********************************************************************
  25.  *
  26.  *  EXTERN
  27.  *
  28.  */
  29.  
  30. /********************************************************************
  31.  *
  32.  *  PUBLIC
  33.  *
  34.  */
  35.  
  36. /********************************************************************
  37.  *
  38.  *  CODE
  39.  *
  40.  */
  41.  
  42. void __asm igui_Working(register __a0 APTR application,
  43.                         register __a1 char *text)
  44. {
  45.   #ifdef DEBUG
  46.   DEBUG_MAKRO
  47.   #endif
  48.  
  49.   guistuff_NewContent(application, guistuff_InitSimpleText(text));
  50. }
  51.